/* Hero Section */
.hero-section {
  background: no-repeat center center/cover;
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  /* background-size: cover; */
}

.hero-section h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-section p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
}


.hero-section .highlight {
  color: var(--highlight-color); /* or any color you prefer */
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif !important;
  font-size: 50px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .video-box iframe {
    height: 300px;
  }
}








/* Admissions Section */
.admissions-section {
  padding: 80px 30px;
  background: var(--text-light);
}

.admissions-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.admissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Text */
.admissions-text h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.3;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.admissions-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--paragraph-color);
  margin-bottom: 20px;
}

.admissions-text .btn {
  display: inline-block;
  background: var(--highlight-color);
  color: var(--text-light);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.admissions-text .btn:hover {
  background: var(--highlight-colorhover);
}

/* Right Image */
.admissions-image {
  position: relative;
  display: inline-block;
}

.admissions-image img {
  width: 70%;
  height: 500px;
  margin-left: 80px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Stat Boxes */
.stat-box {
  position: absolute;
  padding: 14px 22px;
  border-radius: 8px;
  color: var(--text-light);
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.stat-box h3 {
  font-size: 22px;
  margin: 0;
}

.stat-box p {
  font-size: 14px;
  color: var(--text-light);
  margin: 4px 0 0;
}

/* Top Right Box */
.stat-box.top-right {
  top: 15px;
  right: 15px;
  background: var(--primary-color); /* navy blue */
}

/* Bottom Left Box */
.stat-box.bottom-left {
  bottom: 15px;
  left: 15px;
  background: var(--highlight-color); /* green */
}

/* Responsive */
@media (max-width: 900px) {
  .admissions-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .admissions-image {
    margin-top: 30px;
  }
}


@media (max-width: 450px) {

.admissions-image img {
  width: 75%;
  height: 400px;
  margin-left: 0px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}


}









/* Features Section */
.features-section {
  padding: 30px 30px;
  background: var(--text-light);
  text-align: center;
}

.features-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.features-section h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
  color: var(--primary-color);
  line-height: 1.4;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Feature Card */
.feature-card {
  background: var(--text-light);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-card img {
  width: 60px;
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 16px;
  font-weight: bold;
  color: var(--paragraph-color);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
















